File: /var/www/html/owlcrm/app/first-project/resources/views/library/show.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>update data</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-6">
<h1>Table for show the data</h1>
<table class= table table-bordered table-striped>
<tr>
<th>Name</th>
<th>email</th>
<th>age</th>
<th>city</th>
</tr>
@foreach($data as $id =>$library)
<tr>
<td>{{ $library->Name }}</td>
<td>{{ $library->email }}</td>
<td>{{ $library->age }}</td>
<td> {{ $library->city }}</td>
</tr>
@endforeach
<a href="{{ url('/') }}" class="btn btn-danger btn-sm">Create new</a>
</table>
</div>
</div>
</div>
</body>
</html>